home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Die Ultimative Software-P…i Collection 1996 & 1997
/
Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso
/
g
/
gnu_c
/
incl98.zoo
/
utime.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1993-07-10
|
273 b
|
16 lines
#ifndef _U_TIME_H
#define _U_TIME_H
#ifndef _COMPILER_H
#include <compiler.h>
#endif
struct utimbuf { /* type for times() call */
time_t actime;
time_t modtime;
};
__EXTERN int utime __PROTO((const char *path, const struct utimbuf *times));
#endif /* _U_TIME_H */